home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Shareware / IDimager Personal 4.2.0.3 / setup_IDimager_Personal_V4.exe / {app} / web / js / idimager.js next >
Text File  |  2008-06-27  |  847b  |  47 lines

  1. NS4 = (document.layers) ? true : false;
  2.  
  3. function doInit()
  4. {
  5.   var myGlobalHandlers = 
  6.   {
  7.     onCreate: function(){
  8.       $('imgHome').src = '%var:PageOffset/images/spinner.gif';
  9.     },
  10.  
  11.     onComplete: function() {
  12.       if(Ajax.activeRequestCount == 0)
  13.       {
  14.         $('imgHome').src = '%var:PageOffset/images/home.png';
  15.       }
  16.     }
  17.   };
  18.  
  19.   Ajax.Responders.register(myGlobalHandlers);
  20. }
  21.  
  22.  
  23. function doSearch (AText)
  24. {
  25.   getHTML('%var:PageOffset/modules/search.psc', 'thumbs', 'text=' + escape(utf8.encode(AText)) + '&labels=y&albums=y');
  26. }
  27.  
  28. function selectAll(event)
  29. {
  30.   $('searchInput').select();
  31. }
  32.  
  33. function checkEnter(event)
  34. {     
  35.     var code = 0;
  36.     
  37.     if (NS4)
  38.       code = event.which;
  39.     else
  40.       code = event.keyCode;
  41.  
  42.     if (code==13)
  43.         doSearch ($F('searchInput'));
  44. }
  45.  
  46.  
  47.